home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 301-325 / disk_313 / uucp / uucp1.lzh / src / lib / sleep.c < prev    next >
C/C++ Source or Header  |  1990-01-10  |  156b  |  17 lines

  1.  
  2. /*
  3.  *  SLEEP.C
  4.  *
  5.  *  (C) Copyright 1989-1990 by Matthew Dillon,  All Rights Reserved.
  6.  *
  7.  */
  8.  
  9. #include <proto/all.h>
  10.  
  11. void
  12. sleep(n)
  13. {
  14.     Delay(50*n);
  15. }
  16.  
  17.